home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * XML.js
- *
- * USAGE
- * Part of Netobjects JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2000-2005 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *
- *****/
-
- if (!IS.isModuleInitialized("IS.NOF.XML"))
- {
- /****h* NOF_JavaScript_Library/NOF.XML
- *
- * NAME
- * NOF.XML
- *
- * DESCRIPTION
- * The NOF.XML namespace.
- * Package design and implementation based on code found at:
- * http://sarissa.sourceforge.net/ and
- * http://webfx.eae.net/ (xml extras)
- *
- ****/
- function NOF_XML() {
- this.__proto__ = NOF_XML.prototype;
- this.type = IS.TYPE_NAMESPACE;
- }
- // add XML namespace to NOF namespace
- NOF.__proto__.XML = new NOF_XML();
-
- }
-
- var XML = NOF.XML;
-
-